/* Define Color Scheme */
:root {
    --primary-color: #0A3D62; /* Deep Blue */
    --accent-color: #F4C724;  /* Golden Yellow */
    --background-color: #F8F9FA; /* Light Gray */
    --text-color: #333333;    /* Dark Gray */
    --cta-color: #E74C3C;     /* Vibrant Red */
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background: linear-gradient(to right, #8360c3, #2ebf91);
}

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Header Styling */
header {
    background-color: #222; /* Dark background */
    color: var(--text-color); /* Use the defined text color */
    padding: 15px 20px;
}

/* CTA Button Styles */
.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 20px; /* Add margin to lower the buttons */
}
  
/* Primary Button */
.cta-btn.primary {
    background-color: #007bff;
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}
  
.cta-btn.primary:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 10px rgba(0, 123, 255, 0.3);
}
  
.cta-btn.primary:active {
    background-color: #00408a;
    transform: scale(0.98);
}
  
/* Secondary Button */
.cta-btn.secondary {
    background-color: #6c757d;
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(108, 117, 125, 0.2);
}
  
.cta-btn.secondary:hover {
    background-color: #545b62;
    box-shadow: 0 6px 10px rgba(108, 117, 125, 0.3);
}
  
.cta-btn.secondary:active {
    background-color: #3e444a;
    transform: scale(0.98);
}
  
/* Outlined Button */
.cta-btn.outlined {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}
  
.cta-btn.outlined:hover {
    background-color: #007bff;
    color: white;
}
  
.cta-btn.outlined:active {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: scale(0.98);
}

/* Hero Section */
.hero {
        width: 100%;
        height: 100vh; /* Adjust the height as needed */
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: url('../../Photos/VNU_M582_01.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
}

/* Hero Content */
.hero-content {
    text-align: center;
    color: var(--text-color); /* Default color for text in hero-content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 0; /* Ensure there's no unwanted margin */
    padding-top: 0; /* Ensure no padding is pushing the content down */
}

.hero-content h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 10px;
}

.hero-content p {
    background-color: rgba(255, 255, 255, 0.8); /* White background with 80% opacity */
    color: var(--text-color); /* Text color */
    padding: 20px;
    border-radius: 15px; /* Rounded corners */
    margin: 10px 0 10px 0; /* Add 10px margin to the top */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow effect */
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services-container {
    text-align: center;
    padding: 60px 20px;
}

.services-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-container p {
    font-size: 18px;
    color: black;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.service {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service p {
    font-size: 16px;
    color: var(--text-color);
}

/* Why Choose Us Section */
.Why-Choose-Us {
    display: flex; /* Use flexbox for a two-column layout */
    justify-content: space-between; /* Ensure the text and image are spaced apart */
    align-items: flex-start; /* Align content to the top */
    padding: 60px 20px;
    margin: 0 auto;
    max-width: 1200px; /* Limit max width */
}

/* Text Section */
.Why-Choose-Us .Why-Choose-Us-Li {
    flex: 1; /* Take up 50% of the width */
    padding-right: 20px; /* Space between the text and the image */
    display: flex;
    flex-direction: column; /* Align text vertically */
    justify-content: flex-start; /* Align items to the top */
    text-align: center; /* Ensure text is aligned left */
}

/* Heading Styling */
.Why-Choose-Us h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center; /* Align the heading to the left */
    margin-left: 0; /* Remove any extra left margin */
}

.Why-Choose-Us h1 {
    color: black;
}
/* Paragraph Styling */
.Why-Choose-Us p {
    background-color: white;
    color: var(--text-color); /* Text color */
    padding: 20px;
    border-radius: 15px; /* Rounded corners */

    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow effect */
    max-width: 800px;
    margin: 20px auto;
}

/* Let's Move Section */
.lets-move {
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ensure vertical centering */
    align-items: center; /* Ensure horizontal centering */
    margin: 0 auto;
    max-width: 1200px; /* Limit max width */
}

.lets-move h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.lets-move p {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 40px;
}



/* Ensure buttons are on the same line */
.lets-move .button-container {
    display: flex;
    gap: 20px; /* Space between the buttons */
    justify-content: center; /* Center the buttons horizontally */
    align-items: center; /* Align buttons vertically in case of varying heights */
}

/* Call-to-action button styling */
.lets-move .cta-btn {
    background-color: var(--cta-color);
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.lets-move .cta-btn:hover {
    background-color: #c0392b;
}

footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
    font-size: 16px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffcc00;
}

.footer-section p {
    margin: 5px 0;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #ffcc00;
}

.whatsapp img {
    width: 200px;  /* Adjust the size as needed */
    height: auto;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000; /* Keeps it above other elements */
}
/* Social Media Links */
.social-links a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero {
        background: url('../../Photos/VNU_M582_01.png') no-repeat center center;
        background-size: contain;
        background-position: 50% 20%;
        height: auto; /* Let content define height */
        min-height: 100vh; /* Ensures at least full height */
        padding-top: 20vh; /* Push content down */
        background-size: contain;
    }

    .services-container {
        margin-top: -180px; /* Remove extra margin */
        padding-top: 10px; /* Adjust as needed */
    }

    .services-grid {
        margin-top: -100px;
    }

    .Why-Choose-Us {
        flex-direction: column; /* Stack the content vertically on small screens */
        text-align: center; /* Center everything */
    }

    .Why-Choose-Us .Why-Choose-Us-Li {
        padding-right: 0; /* Remove the padding on smaller screens */
        margin-bottom: 20px; /* Add margin below the text section */
    }

    .Why-Choose-Us p {
        margin-top: 3vh;
    }

    .lets-move {
        margin-top: -10vh;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-section {
        margin: 20px 0;
    }

    .whatsapp img {
        width: 100px;  /* Adjust the size as needed */
        height: auto;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000; /* Keeps it above other elements */
    }

}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@300;400;600&display=swap');
